home *** CD-ROM | disk | FTP | other *** search
/ ETO Development Tools 4 / ETO Development Tools 4.iso / Tools - Objects / ResEdit / ResEdit 2.1 / Examples / PExamples / MakeLDEF < prev    next >
Text File  |  1990-12-06  |  533b  |  28 lines

  1. #    MakeFile    -  Make instructions for the ResEdit ICON LDEF.
  2. #
  3. #    Copyright Apple Computer, Inc. 1986-1990
  4. #    All rights reserved.
  5. #
  6. #    This makefile builds:
  7. #        The ICON Resource LDEF
  8. #
  9.  
  10. OutFile = {buildToName}
  11. obj = :obj:
  12. source = :Source:
  13. ResEditLibraries = ::Libraries:
  14.  
  15. LDEFLibs =     {obj}LDEF.a.o ∂
  16.                         {obj}ResDisp.a.o
  17. # Link for ICON LDEF
  18. "{OutFile}"        ƒƒ    {obj}ICON.LDEF.p.o {LDEFLibs}
  19.     Link    {LDEFLibs} ∂
  20.             {obj}ICON.LDEF.p.o ∂
  21.             -ra =resPurgeable -sg ICON -rt LDEF=128 ∂
  22.             -o "{OutFile}"
  23.  
  24. {obj}    ƒ    {source} {ResEditLibraries}
  25.  
  26.  
  27.  
  28.